home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
GAMES
/
GM_THORO.ARJ
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-02-06
|
4KB
|
129 lines
echo off
cls
break on
if %0==a:install goto adrive
if %0==A:install goto adrive
if %0==A:INSTALL goto adrive
if %0==b:install goto bdrive
if %0==B:install goto bdrive
if %0==B:INSTALL goto bdrive
if %0==install goto doinstall
if %0==INSTALL goto doinstall
echo Please switch to the drive you wish to install from before
echo starting install. For example, to install from the B: drive,
echo Enter B:
echo Then enter INSTALL %1
goto End
:adrive
goto doinstall
:bdrive
b:
goto doinstall
:doinstall
if "%1"=="" goto DriveNeeded
if %1==a: goto MakeDir
if %1==A: goto MakeDir
if %1==b: goto MakeDir
if %1==B: goto MakeDir
if %1==c: goto MakeDir
if %1==C: goto MakeDir
if %1==d: goto MakeDir
if %1==D: goto MakeDir
if %1==e: goto MakeDir
if %1==E: goto MakeDir
if %1==f: goto MakeDir
if %1==F: goto MakeDir
if %1==g: goto MakeDir
if %1==G: goto MakeDir
if %1==h: goto MakeDir
if %1==i: goto MakeDir
if %1==I: goto MakeDir
if %1==j: goto MakeDir
if %1==J: goto MakeDir
if %1==k: goto MakeDir
if %1==K: goto MakeDir
if %1==l: goto MakeDir
if %1==L: goto MakeDir
if %1==m: goto MakeDir
if %1==M: goto MakeDir
if %1==n: goto MakeDir
if %1==N: goto MakeDir
if %1==o: goto MakeDir
if %1==O: goto MakeDir
if %1==p: goto MakeDir
if %1==P: goto MakeDir
:InvalidDrive
echo "%1" is an invalid drive name. Please use the correct drive letter
echo followed by a colon:
:DriveNeeded
echo Please specify which drive to install DOSAGE MASTER v2 to,
echo for example:
:Example
echo.
echo install c:
goto End
:MakeDir
echo ╔═══════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ GAMBLER'S MATE ║
echo ║ DOSAGE MASTER v2 ║
echo ║ Disk Install Utility ║
echo ║ ║
echo ║ ║
echo ║ This program will install all files into a directory called ║
echo ║ "\GM\DM2" on drive %1. If you do not wish to do this, then ║
echo ║ press Ctrl-C then "Y" now. ║
echo ║ ║
echo ╚═══════════════════════════════════════════════════════════════╝
echo.
pause
echo.
if exist %1\GM\DM2\*.* goto DirExists
md %1\GM > nul
md %1\GM\DM2
goto CopyFiles
:DirExists
echo WARNING: The directory %1\GM\DM2 already exists. Press Ctrl-C then
echo "Y" now if you don't want to overwrite the contents of that
echo directory.
echo.
pause
echo.
:CopyFiles
echo Copying "DOSAGE MASTER v2" files to %1\GM\DM2...
copy/v *.* %1\GM\DM2 > NUL
if not exist %1\GM\DM2\dm2-add.exe goto InstallError
cls
echo ╔══════════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ DOSAGE MASTER v2 has been successfully installed to your %1 drive. ║
echo ║ ║
echo ║ To run DOSAGE MASTER v2 type DM2 and press ENTER. ║
echo ║ ║
echo ╚══════════════════════════════════════════════════════════════════════╝
%1
cd %1\GM\DM2
goto End
:InstallError
echo ERROR: Installation of DOSAGE MASTER v2 into %1\GM\DM2 was unsuccessful.
echo This could be caused because your %1 drive is full or unaccessible.
echo DOSAGE MASTER v2 needs about 201K of free disk space.
echo.
:End
echo.